home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #11 / Software USA Volume 4.11.iso / mac / Educational / mac06 / usr / include / pwd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-14  |  317 b   |  23 lines  |  [TEXT/SPM ]

  1. /* mac06©1998 by HNS/DSITRI hns@computer.org
  2. ** pwd.h
  3. */
  4.  
  5. #pragma once
  6.  
  7. #include "sys/types.h"
  8.  
  9. #define __PASSWD "/etc/passwd"
  10.  
  11. struct passwd {
  12.     char    *pw_name;
  13.     uid_t    pw_uid;
  14.     gid_t    pw_gid;
  15.     char    *pw_dir;
  16.     char    *pw_shell;
  17.     };
  18.  
  19. struct passwd *getpwnam(const char *name);
  20. struct passwd *getpwuid(uid_t uid);
  21.  
  22. /* EOF */
  23.